feat: implement auto version bump and release workflow#41
Merged
jackye1995 merged 8 commits intolance-format:mainfrom Aug 29, 2025
Merged
feat: implement auto version bump and release workflow#41jackye1995 merged 8 commits intolance-format:mainfrom
jackye1995 merged 8 commits intolance-format:mainfrom
Conversation
Add automated version management and release process similar to lance-spark: - Auto-bump workflow detects changes and creates version bump PRs - Release workflow creates GitHub releases with automatic versioning - Enhanced python-release workflow with PyPI availability checking - Python scripts for version calculation and release note generation - Comprehensive release documentation in CONTRIBUTING.md This enables fully automated releases from version bump to PyPI publishing. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
The package becomes available on PyPI almost immediately after publishing, so the wait step is unnecessary.
The workflow was failing because it tried to import 'toml' which doesn't exist in Python's standard library. Python 3.11+ includes 'tomllib' as the standard TOML parser. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Replace if-else block with ternary operator for cleaner code as suggested by ruff linter. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implement automated version bump, release, and publish process similar to lance-spark.